projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0520401
)
(isearch-process-search-multibyte-characters): If
author
Kenichi Handa
<handa@m17n.org>
Tue, 19 Aug 1997 10:58:40 +0000
(10:58 +0000)
committer
Kenichi Handa
<handa@m17n.org>
Tue, 19 Aug 1997 10:58:40 +0000
(10:58 +0000)
read-multilingual-string returns null string, just call
isearch-update.
lisp/international/isearch-x.el
patch
|
blob
|
history
diff --git
a/lisp/international/isearch-x.el
b/lisp/international/isearch-x.el
index abf797788b4871238e465f0a306a30c51f908de5..be842d4f101dc9dba70e8fb90660d13ddedcdda3 100644
(file)
--- a/
lisp/international/isearch-x.el
+++ b/
lisp/international/isearch-x.el
@@
-60,6
+60,8
@@
(concat (isearch-message-prefix) isearch-message)
nil
current-input-method))
- (isearch-process-search-string str str)))
+ (if (and str (> (length str) 0))
+ (isearch-process-search-string str str)
+ (isearch-update))))
;;; isearch-x.el ends here